Here is what I did:
1. I downloaded the zip file to a Windows 7 laptop.
2. Extracted it.
3. Copy the TC folder to a CF card (capacity of 128 MB) and put it under the root folder.
4. In HP 200LX use file manager to browser to A:/TC/T
C.exe and run it.
5. Inside Turbo C application navigate to Options > Directories.
6. Make sure the directories are set as follows:
a) Include directories: A:\TC\INCLUDE
b) Library directories: A:\TC\LIB
c) Turbo C directory: A:\TC
d) Feel free to enter any value for the Output directory.
7. Navigate to Options > Save options to save the above changes. When the application is restarted make sure to navigate to Options > Retrieve options to take the above options into effect again.
For some reason I could not run it directly from the DOS prompt.
Note:
Compiling and linking may take a lot of memory so beware of out-of-memory errors.
To run your code navigate to Run > Run or Ctrl+F9.
Example code:
#include
int main(void)
{
printf("Hello from HP 200LX");
return 0;
}